Vector Math Node: Cross Product
https://gyazo.com/a3e1140e34d12bd88489d1fcbb7f1866
クロス積
外積
2つの3次元のVectorのaとbに直行する$ a \times bVectorが出力される(上の図参考)
出力されたVectorの長さはaとbが作る平行四辺形の面積と同じになる(上の図参考)
計算式
$ \begin{pmatrix} {A_y \cdot B_z - A_z \cdot B_y} \\\ {A_z \cdot B_x - A_x \cdot B_z} \\\ {A_x \cdot B_y - A_y \cdot B_x} \end{pmatrix}